home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.save / 000048_jaltman2@nyc.rr.com_Wed Dec 27 15:50:29 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: reader2.panix.com!reader1.panix.com!panix!newsfeed-00.mathworks.com!newscon06.news.prodigy.net!prodigy.net!nx01.iad01.newshosting.com!newshosting.com!post02.iad01!roadrunner.com!not-for-mail
  2. Date: Wed, 27 Dec 2006 10:09:15 -0500
  3. From: Jeffrey Altman <jaltman2@nyc.rr.com>
  4. Organization: Send private replies to jaltman at mit dot edu
  5. User-Agent: Thunderbird 1.5.0.9 (Windows/20061207)
  6. MIME-Version: 1.0
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: ftp check usage
  9. References: <1166820118.724272.114490@80g2000cwy.googlegroups.com>   <slrneooln8.grv.fdc@panix3.panix.com> <1167229694.435877.237650@48g2000cwx.googlegroups.com>
  10. In-Reply-To: <1167229694.435877.237650@48g2000cwx.googlegroups.com>
  11. Content-Type: text/plain; charset=ISO-8859-1
  12. Content-Transfer-Encoding: 7bit
  13. Lines: 40
  14. Message-ID: <45928c3e$0$4877$4c368faf@roadrunner.com>
  15. X-Complaints-To: abuse@rr.com
  16. Xref: panix comp.protocols.kermit.misc:15619
  17.  
  18. robt wrote:
  19.  
  20. > 227 Entering Passive Mode (192,168,7,175,241,21)
  21. > ---> NLST tst
  22. > 150 ASCII data connection for /bin/ls (192.168.7.99,38074) (0 bytes).
  23. > 226 ASCII Transfer complete.
  24. > LISTFILE: /tmp/ckT9ayfB
  25. > [/bin/ls: tst: No such file or directory]
  26. > (/usr2/prod/home/oracle/scripts/system/) C-Kermit>status
  27. >  SUCCESS
  28. > (/usr2/prod/home/oracle/scripts/system/) C-Kermit>
  29. > You'll notice that even though the file 'tst' does not exist, I still
  30. > am getting a 'SUCCESS' status.
  31.  
  32. What I believe is happening here is that the FTP server is returning
  33.  
  34.   [/bin/ls: tst: No such file or directory]
  35.  
  36. as part of the LISTFILE output.  If you examine the /tmp/ckT9ayfB
  37. file you should see it.  If that is in fact the case, then when
  38. C-Kermit parses the LISTFILE searching for the specified pattern
  39. it does in fact find it.
  40.  
  41. If I was debugging this problem I would request that you
  42.  
  43.   LOG DEBUG <filename>
  44.   SET FTP DEBUG ON
  45.   SET FTP VERBOSE ON
  46.  
  47. repeat the test
  48.  
  49.   CLOSE DEBUG
  50.  
  51. and then send the ftp debug output, the temporary LISTFILE, and
  52. the debug log output for analysis.
  53.  
  54.